home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / qtw111 / samples / mathcomp.mak < prev    next >
Text File  |  1993-03-20  |  957b  |  32 lines

  1. # ---------------------------------------------------------------------
  2. #
  3. # MathComp.mak - Math Components Makefile - QuickTime for Windows
  4. #
  5. #                Version 1.0
  6. #
  7. #                (c) 1988-1993 Apple Computer, Inc. All Rights Reserved.
  8. #
  9. # ---------------------------------------------------------------------
  10.  
  11. all : mathcomp.dll mathglue.lib
  12.  
  13. mathcomp.dll : mathcomp.obj mathdisp.obj mathcomp.def
  14.  link /nod /a:16 libentry+mathcomp+mathdisp, mathcomp.dll, nul, \
  15.       libw sdllcew qtw, mathcomp.def;
  16.  rc mathcomp.dll
  17.  del mathcomp.qtc
  18.  ren mathcomp.dll mathcomp.qtc
  19.  
  20. mathglue.lib : mathglue.obj
  21.  erase mathglue.lib
  22.  lib mathglue.lib + mathglue.obj;
  23.  
  24. mathcomp.obj : mathcomp.cpp mathcomp.h
  25.  cl /DSTRICT /c /nologo /ASw /Gs /G2Dx /GEdf /Ocglnot /Zl /W3 /WX mathcomp.cpp
  26.  
  27. mathdisp.obj : mathdisp.asm addfs.inc sumfs.inc
  28.  ml /c /Cp mathdisp.asm
  29.  
  30. mathglue.obj : mathglue.asm addfs.inc sumfs.inc
  31.  ml /c /Cp mathglue.asm
  32.